home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / mallcrawl.swf / scripts / DefineSprite_478 / frame_1 / DoAction.as
Text File  |  2007-09-28  |  283b  |  16 lines

  1. function toggle()
  2. {
  3.    if(this.state == "on")
  4.    {
  5.       this.state = "off";
  6.       gotoAndStop(this.state);
  7.       return this.state;
  8.    }
  9.    this.state = "on";
  10.    gotoAndStop(this.state);
  11.    return this.state;
  12. }
  13. _global.Music = this;
  14. var state = "off";
  15. this.toggle();
  16.